/* Global reset and font settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  :root {
    --gradient: linear-gradient(45deg, #00ffd5, #a800ce, #00fffb, #686de0);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  
  body {
    background: #000;
    min-height: 100vh;
    color: #fff;
  }
/* Ensure the font is loaded */
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    background: #000000; /* Solid black background */
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: #000000; /* Still solid black on scroll */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 2.3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    letter-spacing: -0.5px;
    color: #fffbfb;
    margin-right: 20px;
    margin-left: -60px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 75px;
    margin-right: 10px;
}

/* Main navigation links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-size: 1.2rem;
    margin-left: auto; /* This pushes the links to the right */
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1.2rem; 
    letter-spacing: 0.4px; 
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgb(0, 0, 0);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
    animation: gradient 8s linear infinite;
}
/* Custom style for the 'Vertex' link */
.vertex-link {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem; /* Adjust size as needed */
    color: #00e7fc; /* Default text color */
    text-decoration: none;
    margin-left: 40px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease; /* Smooth transition for text color */
    margin-right: -60px;
}
.vertex-link .big-x {
    font-size: 5rem; /* Makes the X bigger */
    vertical-align: middle;
    line-height: 1;
    margin-top: 10px; /* Space between text and X */
    font-family: "Monoton", sans-serif;
    color: #ffffff;
}

/* Hover effect specifically for the 'Vertex' link */
.vertex-link:hover {
    color: transparent; /* Make text transparent so the gradient is visible */
    background: linear-gradient(45deg, #a200ff, #00f2ff, #32cd32); /* Gradient effect */
    background-size: 200% 200%; /* For animation effect */
    -webkit-background-clip: text; /* Makes the background apply to text */
    background-clip: text; /* Standard property for compatibility */
    animation: gradient 1.5s ease-in-out infinite; /* Apply the gradient animation with infinite loop */
}

/* Keyframes for the gradient movement (applies only to 'Vertex') */
@keyframes gradient {
    0% {
        background-position: 200% 0; /* Start the gradient from the right */
    }
    50% {
        background-position: -200% 0; /* Move the gradient to the left */
    }
    100% {
        background-position: 200% 0; /* End the gradient back at the right */
    }
}

/* Mobile view styling */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh; /* Full height of the viewport */
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        z-index: 1000; /* Ensure it appears above other content */
    }

    .nav-links.active {
        right: 0; /* Slide the menu in */
    }

    .mobile-nav-toggle {
        display: block;
    }

/* Mobile view adjustments */
    .vertex-link {

        display: none;
    }

    .vertex-link .big-x {
        display: none;
    }
/* Desktop styling */
.logo {
    font-size: 2.1rem;         /* Font size for desktop */
    margin-left: -3mm;
    display: flex;
    margin-top: 10px;

}
.logo-img {

    display: none;
}

}

.mobile-nav-toggle {
    display: none; /* Hidden by default — shown in media query */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-top:20px
  }
  
  .mobile-nav-toggle .bar {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  

/* Active state for mobile menu toggle */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translate(-50%, 5px) rotate(45deg);
    width: 24px;
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translate(-50%, -5px) rotate(-45deg);
    width: 24px;
}
@media (max-width: 768px) {
    .mobile-nav-toggle {
      display: flex;
    }
  }
/* Hide the link by default */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .mobile-mobile-link {
        text-decoration: none;
        text-align: center;
        display: inline-flex;
        align-items: center;
    }

    .mentry-text {
        color: #00fffb;
        font-size: 2.5rem;
        font-family: "Monoton", sans-serif;
    }

    .big-x {
        color: #ffffff;
        font-size: 4.5rem;
        font-family: "Monoton", sans-serif;
        margin-left: 5px; /* Adjust if needed */
        line-height: 1;
    }

    .mobile-mobile-link:hover {
        text-decoration: underline;
    }
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      backdrop-filter: blur(4px);
  }

  .overlay.active {
      opacity: 1;
      visibility: visible;
  }


.full-width-image {
  width: 100%;
  height: 12cm; /* Set the container height */
  overflow: hidden;
  position: relative;
  margin-top: 80px; /* Add top margin to push it below the navbar */
}

.full-width-image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: -35%;
  left: 0;
  object-fit: cover;
}

/* Text overlay on the image */
.image-text {
  position: absolute;
  top: 50%;
  left: 10%; /* Adjusted to move text to the left */
  transform: translateY(-50%); /* Keep it vertically centered */
  color: rgb(255, 255, 255);
  text-align: left; /* Align the text to the left */
  z-index: 1;
}

.image-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.image-text p {
  font-size: 1.3rem;
  opacity: 0.8;
  color: #ffffff;
}
.message-us-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: black; /* Set default background color */
  }
  
  .message-us-btn:hover {
    background-color: #00bed3;
    transform: translateY(-3px);
  }
  
  .message-us-btn:active {
    transform: translateY(1px);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-top: 60px;
  }
  
  
 

/* Apply gradient text animation to the h2 headings */
.services h2,
.cta h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 4rem; /* Adjusted font size */
    font-weight: 700; /* Added bold text for better readability */
    
    /* Gradient background for text */
    background: var(--gradient); /* Gradient background */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text; /* Standard for text clipping */
    -webkit-text-fill-color: transparent; /* Make text transparent to show the gradient */
    animation: gradientText 8s linear infinite; /* Gradient animation */
    background-size: 300%; /* Larger background size for smooth transition */
}

/* Keyframes for the gradient animation */
@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


  
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: white;
    border: var(--border);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  .service-card p {
    color: #000000;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    color: #000000;
    margin-bottom: 0.5rem;
  }
  
  .cta {
    text-align: center;
    margin-top: 3rem;
  }
  
  .cta p {
    max-width: 700px;
    margin: 1rem auto;
  }
  
  .cta .btn {
    display: inline-block;
    background: #00ffd5;
    color: #000;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .cta .btn:hover {
    background: #00fffb;
  }

  .footer {
    position: fixed;
    bottom: -100px;  /* Initially hidden below the viewport */
    left: 0;
    width: 100%;
    background-color: #fffefe;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px;
    transition: bottom 0.3s ease;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* Center the content horizontally */
    gap: 30px;  /* Space between items */
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    color: rgb(0, 0, 0);
}

.footer-content a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    text-decoration: underline;  /* Underline links on hover */
}

/* Make footer visible when scrolled to the bottom */
.footer.show {
    bottom: 0;  /* Bring the footer into view */
}
/* Footer container */
.bottom-black-box {
    width: 100%;
    height: 400px;
    background-color: #000;
    display: flex;
    justify-content: space-between; /* Ensures content on both sides */
    align-items: center;
    padding: 40px 50px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Makes it responsive on smaller screens */
}

/* Left-side content (title, subheading, description) */
.footer-info {
    color: white;
    max-width: 600px;
    flex-grow: 1; /* Ensures the left content takes up remaining space */
}

/* Title */
.footer-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Subheading */
.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #dcdcdc; /* Light color for subheading */
}

/* Description */
.footer-info p {
    font-size: 16px;
    line-height: 1.5;
    color: #dcdcdc;
    max-width: 500px;
}

/* Centered button section */
.button-section {
    display: flex;
    justify-content: center;
    gap: 40px; /* Adjust space between buttons */
    align-items: center;
    flex-grow: 1; /* Allow the buttons section to grow in available space */
}

.button-item h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.button-item .button {
    padding: 10px 50px;
    background-color: #ffffff; /* Button color */
    color: rgb(0, 0, 0); /* Default text color */
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #000000; /* Initial border color */
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Added border-color transition */
    display: inline-block;
}

.button-item .button:hover {
    background-color: #000000; /* Darker shade for hover */
    color: #ffffff; /* Change text color to white on hover */
    border-color: #ffffff; /* Change border color to white on hover */
}



/* Social icons (right side) */
.social-menu ul {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 20px;
    margin-left: -40px; /* Move the icons more to the left */
}

.social-menu ul li {
    list-style: none;
}

.social-menu ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: white;
    transition: 0.5s;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-decoration: none;
}

.social-menu ul li a i {
    font-size: 28px;
    color: #000000;
    transition: 0.5s;
}

.social-menu ul li a:hover {
    transform: translateY(-10px);
}

.social-menu ul li a:hover i {
    color: #ffffff;
}

.social-menu ul li:nth-child(1) a:hover { background-color: #e4405f; } /* Instagram */
.social-menu ul li:nth-child(2) a:hover { background-color: #0077B5; } /* LinkedIn */
.social-menu ul li:nth-child(3) a:hover { background-color: #25D366; } /* WhatsApp */
.social-menu ul li:nth-child(4) a:hover {
  background: linear-gradient(to bottom, #A020F0, #ffffff); /* Purple to white */
  color: #000; /* Optional: make icon color contrast better */
}

.about-contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-left: 0px; /* Moved more to the right */
  }
  
  .about-info, .contact-info {
    flex: 1;
    min-width: 250px;
    font-size: 1.3rem; /* Make text a bit larger */
  }
  
  .about-info h3,
  .contact-info h3 {
    font-size: 1.5rem; /* Slightly larger section titles */
    margin-bottom: 10px; /* Space below the title */
    margin-right: 30px;
  }
  
  .about-info p,
  .contact-info p {
    margin-bottom: 20px; /* Space between paragraphs */
    line-height: 1.6; /* Increase line height for readability */
    font-size: 1.1rem; /* Make text a bit larger */
    color: #dcdcdc; /* Light color for text */
  }
  /* Mobile-specific adjustments for screens ≤ 768px */
  @media (max-width: 768px) {
    .full-width-image {
      height: 12cm; /* Make the image container taller on mobile */
    }
  
    .full-width-image img {
      height: 100%;  /* Full height of the container */
      top: 0;
    }
  
    .image-text {
      top: 50%; /* Lower the text to make it fit better */
      left: 5%;  /* Make the text a bit more centered */
      width: 90%;  /* Increase width for better text alignment */
    }
  
    .image-text h1 {
      font-size: 2.2rem; /* Smaller heading font size on mobile */
    }
  
    .image-text p {
      font-size: 1.1rem; /* Smaller text for mobile */
    }
  
    .message-us-btn {
      padding: 0.6rem 1.8rem;  /* Smaller button padding */
      font-size: 1.1rem;  /* Smaller button text */
      margin-top: 15px;  /* Adjust margin for mobile */
    }
  }
/* Mobile-specific styles */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* 1 card per row */
        gap: 1rem; /* Adjust the gap between the cards */
    }

    .services h2 {
        font-size: 2rem; /* Smaller heading size for mobile */
        margin-bottom: 1rem; /* Space between the header and content */
    }

    .service-card {
        padding: 1rem; /* Added padding for breathing room around content */
        max-width: 90%; /* Make the card smaller, ensuring it's not full-width */
        margin: 0 auto; /* Center the cards */
        border-radius: 8px; /* Rounded corners for cards */
        background-color: #fff; /* Light background color for readability */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        transition: transform 0.3s ease; /* Add transition effect for card hover */
    }

    .service-card:hover {
        transform: translateY(-5px); /* Slight hover effect to make cards interactive */
    }

    .service-card img {
        height: auto; /* Maintain aspect ratio */
        max-width: 100%; /* Make images responsive */
        border-radius: 6px; /* Rounded corners for images */
        object-fit: contain; /* Ensure images scale without distortion */
        margin-bottom: 1rem; /* Space between image and text */
    }

    .service-card p {
        font-size: 1rem; /* Slightly larger font size for readability */
        color: #333; /* Darker text color for better contrast */
        margin-bottom: 1rem; /* Space between paragraph and heading */
    }

    .service-card h3 {
        font-size: 1.2rem; /* Slightly bigger font size for headings */
        color: #333; /* Dark color for headings */
        margin-bottom: 0.5rem; /* Space between heading and paragraph */
    }
}
@media (max-width: 768px) {
    .bottom-black-box {
      flex-direction: column;
      height: auto;
      padding: 30px 20px;
      align-items: flex-start;
    }
  
    .about-contact-wrapper {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-info {
      width: 100%;
    }
  
    .button-section {
      width: 100%;
      margin-top: 20px; /* Space between button section and other content */
      display: flex;
      flex-direction: column; /* Stack items vertically */
      justify-content: flex-start;
      gap: 20px;
      align-items: flex-start;
    }
  
    .button-item .button {
      padding: 8px 20px;
      font-size: 14px;
      margin-top: 10px;
    }
  
    /* Move social menu up */
    .social-menu {
      display: flex;
      justify-content: flex-start;
      gap: 15px;
      margin-top: 60px; /* Move social menu up */
    }
  
    .social-menu ul {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      gap: 15px;
      margin-left: 0;
    }
  
    .social-menu ul li a {
      width: 45px;
      height: 45px;
    }
  
    .social-menu ul li a i {
      font-size: 20px;
    }
  
    /* Put "Get In Touch" button below the social menu */
    .button-section .button-item {
      order: 2; /* Ensure button is below social menu */
      margin-top: 60; /* Reset margin-top for button */
    }
  }
  @media (max-width: 768px) {
    .footer {
      position: relative; /* Makes the footer part of normal flow */
      bottom: 0; /* Overrides the hidden effect */
      margin-top: 20px; /* Spacing from social icons */
      background-color: #f5f5f5; /* Slight background for visibility */
      padding: 20px 10px;
      text-align: center;
      z-index: 1; /* Ensure it's above background */
    }
  
    .footer-content {
      flex-direction: column; /* Stack links vertically */
      align-items: center;
      gap: 10px;
    }
  
    .footer-content p {
      font-size: 13px;
    }
  }